home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / jovept2.arc / TERM.H < prev    next >
Text File  |  1985-05-30  |  640b  |  31 lines

  1. /* term.h */
  2. /* variables necessary for terminal operations. */
  3.  
  4. #ifndef JOVETERM
  5.  
  6. extern int LI;        /* Number of lines */
  7. extern int CO;        /* Number of columns */
  8.  
  9. extern int TABS;    /* Whether we are in tabs mode */
  10. extern int UpLen;    /* Length of the UP string */
  11. extern int HomeLen;    /* Length of Home string */
  12. extern int LowerLen;    /* Length of lower string */
  13.  
  14. extern int    BG;    /* Are we on a bitgraph */
  15.  
  16. /* extern char PC; */
  17. extern char *BC;    /* Back space */
  18. extern int ospeed;
  19. extern int hasIC;
  20. extern int hasIM;
  21.  
  22. #endif
  23.  
  24. #define DELETE 0
  25. #define INSERTCH 1
  26. #define CLREOL 2
  27. #define INSERT 3
  28.  
  29.  
  30. /* end */
  31.